Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@advertol/core
Advanced tools
Core module for creating Advertol instance.
npm install @advertol/core --save
import advertol from '@advertol/core';
import CustomAdServerService from './service';
import CustomControl from './control';
import CustomContext from './context';
const instance = advertol({
zones: [{
id: 'becky',
element: document.querySelector('.Zone--becky')
}],
service: new CustomAdServerService(),
control: [
new CustomControl()
],
context: [
new CustomContext()
]
});
instance.resolve();
Returns: Advertol
Create Advertol instance.
Type: Object[]
List of zones.
Property | Type | Description |
---|---|---|
element | HTMLElement | Zone DOM element. |
id | string | Zone ID. |
Type: Service
Advertisement server service.
Type: Control[]
List of controls for Advertol instance.
Type: Context[]
List of contexts for Advertol instance.
Returns: Promise
Resolves current instance state. This should be run first time and every time you add new zone, control or context to resolve new instance state.
Add new control.
Type: 'Control'
Add new context.
Type: 'Context'
Add new zone.
Property | Type | Description |
---|---|---|
element | HTMLElement | Zone DOM element. |
id | string | Zone ID. |
Destroy instance.
Tested in IE9+ and all modern browsers, assuming Promise
support is available.
For automated tests, run npm run test:automated
(append :watch
for watcher support).
MIT © Ivan Nikolić
[1.0.4][] - 2024-02-09
FAQs
Advertisement zones manager.
We found that @advertol/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.